home *** CD-ROM | disk | FTP | other *** search
/ Internet Publisher's Toolbox 2.0 / Internet Publisher's Toolbox.iso / internet / ntserver / wtsource / wutil.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-16  |  1.5 KB  |  48 lines

  1. /*--------------------------------------------------------------------------
  2.  * ABSTRACT:    wutil.h -- WAIS TOOLS header file
  3.  *
  4.  * AUTHOR
  5.  *   M. Tracy Shen
  6.  *
  7.  *
  8.  *------------------------------------------------------------------------*/
  9.  
  10. /* Copyright (c) CNIDR (see ../COPYRIGHT) */
  11.  
  12. #ifndef _H_WAIS_util_
  13. #define _H_WAIS_util_
  14.  
  15. #include "cdialect.h"
  16.  
  17. #include "cutil.h"
  18.  
  19. #ifdef __cplusplus
  20. /* declare these as C style functions */
  21. extern "C"
  22.     {
  23. #endif /* def __cplusplus */
  24.  
  25. void twais_format_req_apdu _AP(( boolean use_template, char* apdu_buff, long* len));
  26. void twais_dsply_rsp_apdu _AP(( char* rsp_buff, long rsp_len));
  27. void twais_free_apdu _AP((char* apdu_buff));
  28.  
  29. long twais_format_init_apdu _AP(( boolean use_template, char* apdu_buff));
  30. long twais_format_typ3_srch_apdu _AP(( boolean use_template, char* apdu_buff));
  31. long twais_format_typ1_srch_apdu _AP(( boolean use_template, char* apdu_buff));
  32.  
  33. void twais_dsply_init_rsp_apdu _AP(( char* buffer));
  34. void twais_dsply_init_apdu _AP(( char* buffer));
  35. void twais_dsply_srch_rsp_apdu _AP(( char* buffer));
  36. void twais_dsply_srch_apdu _AP(( char* buffer));
  37.  
  38. void twais_tmplt_init_apdu _AP((char* buff, long* buff_len));
  39. void twais_tmplt_init_rsp_apdu _AP((char* buff, long* buff_len));
  40. void twais_tmplt_typ1_srch_apdu _AP(( char* buff, long* buff_len));
  41. void twais_tmplt_typ3_srch_rsp_apdu _AP(( char* buff, long* buff_len));
  42.  
  43. #endif
  44.  
  45. #ifdef __cplusplus
  46.     }
  47. #endif /* def __cplusplus */
  48.